how to twist a image in the code behind C#

57

how to twist a image in the code behind C# -

RotateTransform rt = new RotateTransform();
rt.Angle = 30;
myImage.RenderTransform = rt;

Comments

Submit
0 Comments